home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970326-19970626 / 000263_news@newsmaster….columbia.edu _Mon Jun 2 16:44:46 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id QAA05938
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 2 Jun 1997 16:44:45 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id QAA25647
  7.     for kermit.misc@watsun; Mon, 2 Jun 1997 16:44:44 -0400 (EDT)
  8. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!howland.erols.net!worldnet.att.net!cpk-news-hub1.bbnplanet.com!news.bbnplanet.com!www.nntp.primenet.com!nntp.primenet.com!news.primenet.com!mix.com!sluggy
  9. From: billy@mix.com
  10. Newsgroups: comp.protocols.kermit.misc,comp.os.linux.misc
  11. Subject: Re: Transmit drops the last 10-14 characters
  12. Date: 2 Jun 1997 13:35:00 -0700
  13. Organization: Billy's Place
  14. Lines: 14
  15. Message-ID: <5mvapk$lov@nntp02.primenet.com>
  16. References: <338498B1.41C6@raleigh.ibm.com> <5m2brb$5l3$1@newsmaster.cc.columbia.edu> <338FC0D6.69AAE64D@mindspring.com> <5mps6k$do2$1@newsmaster.cc.columbia.edu>
  17. X-Posted-By: billy@206.165.5.102 (billy)
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7114 comp.os.linux.misc:196936
  19.  
  20. Frank da Cruz <fdc@watsun.cc.columbia.edu> writes:
  21.  
  22. > #ifdef  NETCONN
  23. >     if (netconn) return (0);            /* Network connection, do nothing */
  24. > #endif  /* NETCONN */
  25. >     sleep(1);                           /* <--- Add this line */
  26.  
  27. I don't know if it's possible in Unix/Linux but in the RT-11 (PDP-11)
  28. Kermit I used a write with a completion routine for this - the write
  29. gets queued then when it's actually done the completion routine (in
  30. the os) executes and clears a wait flag after which the device can be
  31. closed or the program can proceed elsewhere.
  32.  
  33. Billy Y..